home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / utility / 455 / samples / shell0.c < prev    next >
Encoding:
C/C++ Source or Header  |  1990-07-20  |  241 b   |  16 lines

  1. /* 
  2.  * shell0.c - for Turbo C 
  3.  * sets _shell_p to NULL, belongs in every AUTO folder
  4.  * 30/06/89 gs
  5.  */
  6. #include <tos.h>
  7.  
  8. main(void)
  9. {
  10.     long oldssp = Super(0L);
  11.     
  12.     *((long *)0x4f6L) = 0L;
  13.     Super((void *)oldssp);
  14.     return 0;
  15. }
  16.